home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBKnob / DialogThread.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.5 KB  |  63 lines

  1. /***************************************
  2. HTBKnob.dll
  3.  
  4. DialogThread.h
  5.  
  6. Copyright TransEra Corporation 1999
  7. ***************************************/
  8.  
  9. #if !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  10. #define AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. // DialogThread.h : header file
  17. //    jont 7/99
  18.  
  19.  
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // DialogThread thread
  23.  
  24. class DialogThread : public CWinThread
  25. {
  26.     DECLARE_DYNCREATE(DialogThread)
  27. protected:
  28.     DialogThread();           // protected constructor used by dynamic creation
  29.  
  30. // Attributes
  31. public:
  32.  
  33. // Operations
  34. public:
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(DialogThread)
  39.     public:
  40.     virtual BOOL InitInstance();
  41.     afx_msg void OnPaint();
  42.     virtual int ExitInstance();
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46. protected:
  47.     virtual ~DialogThread();
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(DialogThread)
  51.         // NOTE - the ClassWizard will add and remove member functions here.
  52.     //}}AFX_MSG
  53.  
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61.  
  62. #endif // !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  63.